Interface Processable<T,S>
-
- Type Parameters:
T- the T type object to process.S- the S type object of the data produced by processing.
- All Known Implementing Classes:
Algorithm,BreadthFirstTraversalSearch,BronKerbosch,Bundle,ClusteringAlgorithm,ConnectedComponentsDFS,DepthFirstTraversalSearch,DijkstraShortestPath,FastGreedy,GirvanNewman,Kruskal,MatrixPatternAnalyzer,Prim,ShortestPath,Walktrap
public interface Processable<T,S>Represents an operation that can be carried out on a specific type of data.- Version:
- 3.0 May 20, 2015
- Author:
- Charles Allen Schultz II
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.ArrayList<S>process(T t)Processes data.
-